home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / dbase / vpi1_330.zip / MEMODEMO.DBT (.txt) < prev    next >
dBase/FoxBase/XBase/FoxPro Database File  |  1991-12-31  |  4KB  |  42 lines

  1. MEMOTEST
  2. 001 INTRO:
  3. MEMO fields provide an industry standard way to attach variable 
  4. length information to data files. MEMOs for a data base file 
  5. are stored in a separate file with the same name but the 
  6. extension DBT. The two files should be stored together in the 
  7. same subdirectory.
  8. While we create new files in dBASE 4.1 format, Info will read 
  9. and write to dBASE III format if a memo file in that format is 
  10. supplied.
  11. le in that format is 
  12. supplied.
  13. 002 READ, EDIT, and BROWSE:
  14. When a memo field is displayed in READ, EDIT, or BROWSE, the 
  15. field is filled in with either 'memo' or 'MEMO'. The upper case 
  16. form is used when there is a memo attached to the field.
  17. To view a memo move the cursor to the memo field and press 
  18. alt-R to read the memo, alt-W to edit the memo. In either case, 
  19. the memo is displayed in the Info WRITE facility. If WRITE was 
  20. entered with alt-R, changes will not be saved when returning 
  21. from WRITE.
  22. aved when retruning 
  23. from WRITE.
  24. `#AT?
  25. Q47SG
  26. 003 WRITing MEMOS:
  27. A memo may be written at any time by invoking the WRITE command 
  28. with the memo field name preceeded by 'm.' For example this 
  29. memo could have been invoke with the command WRITE m.note.
  30. A file can be moved in or out of memo fields with the WRITE 
  31. command. For example, to load a file NEWNOTE.DOC to replace the 
  32. current memo in the field MESSAGE (or to add a memo where there 
  33. was none), enter WRITE with the command
  34.    WRITE newnote.doc
  35. on leaving WRITE, change the filename to M.message.
  36. ng MEMOSS
  37. R0-uP
  38. 004 USING TEXT:
  39. A memo can also be displayed using the TEXT command.
  40. TEXT M.NOTE would display this message. See the program 
  41. MEMODEMO.prg which uses this technique.
  42.